home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part2 / 17333 < prev    next >
Encoding:
Text File  |  1996-08-05  |  970 b   |  26 lines

  1. Path: news.urz.uni-heidelberg.de!usenet
  2. From: pstarzet@ix.urz.uni-heidelberg.de (Paul Starzetz)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: How do you use DOS extenders?
  5. Date: 15 Apr 1996 10:00:27 GMT
  6. Organization: University of Heidelberg, Germany
  7. Distribution: world
  8. Message-ID: <4kt6nr$ree@sun0.urz.uni-heidelberg.de>
  9. References: <4kmo6e$csu@sol.sun.csd.unb.ca>
  10. Reply-To: pstarzet@ix.urz.uni-heidelberg.de
  11. NNTP-Posting-Host: aixterm2.urz.uni-heidelberg.de
  12.  
  13. >To use DOS4GW you need the watcom c compiler and use the option to compile 
  14. >in flat mode... This is my personal choice of language to develope 
  15. >graphics for msdos..
  16.  
  17. yes, it's true. There is also a commercial version of this DOS-Extender, DOS4G (or DOS4G Proffesional), which will execute not only Watcom's programms (but it is very expensive).
  18. In Watcom you simply choose the 32bit small (or flat, the are different !) modell and you can write:
  19.  
  20. char* ptr = new char[5000000];
  21.  
  22. and get about 5MB memory....
  23.  
  24.  
  25.  
  26.